home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_12_close window = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  897 b   |  25 lines

  1. on mouseUp
  2.   set locHstart to the left of sprite 11
  3.   set locVstart to the top of sprite 11
  4.   set the locH of sprite 8 to locHstart
  5.   set the locV of sprite 8 to locVstart
  6.   set widthStart to the width of the member of sprite 11
  7.   set heightStart to the height of the member of sprite 11
  8.   set the width of sprite 8 to widthStart
  9.   set the height of sprite 8 to heightStart
  10.   updateStage()
  11.   set the visible of sprite 11 to 0
  12.   set the visible of sprite 10 to 0
  13.   set the visible of sprite 9 to 0
  14.   repeat with y = 10 down to 0
  15.     set the width of sprite 8 to y * (widthStart / 10.0)
  16.     set the height of sprite 8 to y * (heightStart / 10.0)
  17.     set the locH of sprite 8 to locHstart + ((11 - y) * (widthStart / 20.0))
  18.     set the locV of sprite 8 to locVstart + ((11 - y) * (heightStart / 20.0))
  19.     updateStage()
  20.     startTimer()
  21.     repeat while the timer < 5
  22.     end repeat
  23.   end repeat
  24. end
  25.